home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 17366 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: mp.cs.niu.edu!not-for-mail
  2. From: z929171@cs.niu.edu (kim sang woo)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: How do you use DOS extenders?
  5. Date: 15 Apr 1996 10:35:26 -0500
  6. Organization: Northern Illinois University
  7. Distribution: world
  8. Message-ID: <4ktqbu$fpu@mp.cs.niu.edu>
  9. References: <4kmo6e$csu@sol.sun.csd.unb.ca> <4kt6nr$ree@sun0.urz.uni-heidelberg.de>
  10. NNTP-Posting-Host: mp.cs.niu.edu
  11. X-Newsreader: TIN [version 1.2 PL2]
  12.  
  13. Paul Starzetz (pstarzet@ix.urz.uni-heidelberg.de) wrote:
  14. : >To use DOS4GW you need the watcom c compiler and use the option to compile 
  15. : >in flat mode... This is my personal choice of language to develope 
  16. : >graphics for msdos..
  17.  
  18. : yes, it's true. There is also a commercial version of this DOS-Extender, DOS4G (or DOS4G Proffesional), which will execute not only Watcom's programms (but it is very expensive).
  19.  
  20.    You can fake the DOS4GW so that it will see watcom header if you hack
  21. startup code for 32 bit compiler, 
  22.    for example, code following as your first line of assembler
  23.  
  24.    start : jmp entry
  25.       Sig  db "Watcom",0
  26.    entry:
  27.  
  28.         C startup code continues
  29.  
  30.  
  31.    
  32.  
  33.